home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 1999-07-13 | 1.8 KB | 70 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0" "TYPE"="1" "COUNT"="5" "UIPATH"="Appearance\Desktop\Icons" "NAME"="Tool Tips" "VERSION"="1.41" "LANGUAGE"="VBScript" "TEXT 1"="My Computer" "TEXT 2"="Recycle Bin" "TEXT 3"="Network" "TEXT 4"="Internet Explorer" "TEXT 5"="Outlook 2000" "DESCRIPTION 1"="If you have ActiveDesktop installed (Internet Explorer 4 and above), Windows will displays a tip (aka Tool Tip) for these items on the desktop if you pass them with your mouse." "DESCRIPTION 2"="You can change these tips to anything you want." "AUTHOR"="Xteq Systems" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com." sP="HKLM\Software\Classes\CLSID\" sMC="{20D04FE0-3AEA-1069-A2D8-08002B30309D}\" sNH="{208D2C60-3AEA-1069-A2D7-08002B30309D}\" sTC="{645FF040-5081-101B-9F08-00AA002F954E}\" sIE="{3DC7A020-0ACD-11CF-A9BB-00AA004AE837}\" sOT="{00020D75-0000-0000-C000-000000000046}\" sV="InfoTip" Sub Plugin_Initialize s=RegReadValue(sp&sMC&sV) if IsEmpty(s)=false then Call SetUIElement(1,s) s=RegReadValue(sp&sTC&sV) Call SetUIElement(2,s) s=RegReadValue(sp&sNH&sV) Call SetUIElement(3,s) s=RegReadValue(sp&sIE&sV) Call SetUIElement(4,s) s=RegReadValue(sp&sOT&sV) Call SetUIElement(5,s) else Disable end if End Sub Sub Plugin_CheckData(ElementIndex) End Sub Sub Plugin_Apply(ElementIndex,ElementSubIndex) s=GetUIElement(1) Call RegWriteValue(sp&sMC&sV,s,1) s=GetUIElement(2) Call RegWriteValue(sp&sTC&sV,s,1) s=GetUIElement(3) Call RegWriteValue(sp&sNH&sV,s,1) s=GetUIElement(4) Call RegWriteValue(sp&sIE&sV,s,1) s=GetUIElement(5) Call RegWriteValue(sp&sOT&sV,s,1) End Sub Sub Plugin_Terminate End Sub